home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML ConsoleMax.sea / XML ConsoleMax / Required / sox / com / commerceone / CBL / n1_0 / PriceCheckRequest.sox < prev    next >
Encoding:
Extensible Markup Language  |  2000-07-03  |  1.8 KB  |  59 lines  |  [TEXT/ttxt]

  1. <?xml version="1.0"?>
  2. <!DOCTYPE schema SYSTEM "urn:x-commerceone:document:com:commerceone:xdk:xml:schema.dtd$1.0">
  3.  
  4. <schema uri="urn:x-commerceone:document:com:commerceone:CBL:CBL.sox$1.0">
  5.  
  6. <intro>
  7. <p>Copyright Notice</p>
  8. <p>Common Business Library 2.0<br/>
  9. Copyright 1999 Commerce One, Inc.</p>
  10. <p>Permission is granted to use, copy, modify and distribute the DTD's, schemas
  11. and modules in the Commerce One Common Business Library Version 2.0 subject to the terms
  12. and conditions specified at http://www.marketsite.net/xml/cbl/copyright.html</p> 
  13. </intro>
  14.  
  15. <!-- 
  16. Price Check Request Document
  17.  -->
  18.  
  19. <!--  PriceCheckRequest returns the contract prices for a list of order items, under a single
  20.      account, offered by a single supplier.
  21.   -->
  22. <elementtype name="PriceCheckHeader">
  23.     <model>
  24.     <sequence>
  25.             <!--  The supplier of the PartKeys to be quoted -->
  26.             <element type="Reference"        name="SupplierID"  />
  27.  
  28.             <!--  The buyer account code  -->
  29.             <element type="Reference"        name="AccountCode"  />
  30.  
  31.             <!--  The requested currency. Applies to all line items  -->
  32.             <element type="CurrencyCode" name="Currency" />
  33.  
  34.             <!--  The requested quote date. Applies to all line items  -->
  35.             <element type="datetime" name="QuoteDate" />
  36.  
  37.             <!--  Price may be determined by the ship to
  38.                 destination  -->
  39.             <element type="Party" name="PriceCheckShipToParty" occurs="?" />
  40.     </sequence>
  41.     </model>
  42. </elementtype>
  43.  
  44.  
  45. <elementtype name="PriceCheckRequest">
  46.     <model>
  47.         <sequence>
  48.             <element type="PriceCheckHeader" />
  49.  
  50.             <!--  A list of price check order items:  PartKey, quote date, quantity, currency -->
  51.             <!--  The ordering of items returned is guaranteed to match the ordering  -->
  52.             <!--  of items in the PriceCheckRequest.  -->
  53.             <element type="ListOfBaseItemDetail"   occurs="?" />
  54.         </sequence>
  55.     </model>
  56. </elementtype>
  57.  
  58. </schema>
  59.